home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / ov143b.zip / DOSFILE.H < prev    next >
C/C++ Source or Header  |  1993-01-04  |  600b  |  17 lines

  1. /*  001  29-Jun-86  dosfile.h
  2.  
  3.         Header file for use with file.c.
  4.  
  5.         Copyright (c) 1986 by Blue Sky Software.  All rights reserved.
  6. */
  7.  
  8.  
  9. struct search_block {                  /* dos structure for file searching */
  10.    char context[21];                   /* dos context usage */
  11.    unsigned char attrib;               /* file entry attributes */
  12.    unsigned time;                      /* file time */
  13.    unsigned date;                      /* file date */
  14.    unsigned long size;                 /* file size */
  15.    char fn[13];                        /* dos file name */
  16. };
  17.